home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / easyk110.zip / MANUAL.INI < prev    next >
Text File  |  1988-07-25  |  4KB  |  49 lines

  1. ;   MANUAL.INI designed for EasyK by R.A. Elnicki, DIS, CBA, Univ. of Florida 1
  2. ;              Copyright 1987 by R.A. Elnicki                                 2
  3. ;                                                                             3
  4. ;                                                                             4
  5. ;SET BAUD 1200                   ; Activate one baud rate and comment out     5
  6. SET BAUD 2400                    ;  the other baud rate (2400 active here).   6
  7. CLEAR                            ; Clear the chosen port buffers.             7
  8. SET INPUT TIMEOUT-ACTION PROCEED ; Continue in the script if timed out.       8
  9. PAUSE 1                          ; Modem work time buffer.                    9
  10. RUN CLS                          ; Clear the display screen.                 10
  11. OUTPUT AT &F &C1 &D2 &W\13       ; Hayes 2400 SmartModem factory set, data   24
  12. ;                                   carrier suitable for 2400 SM, goes on    25
  13. PAUSE 3                          ;  hook no auto-answer, store, wait 3 sec.  26
  14. OUTPUT +++                       ; Return modem to command state.            27
  15. PAUSE 3                          ; Wait for 3 seconds for modem work.        28
  16. CLEAR                            ; Clear prior OK from buffer for next IF... 29
  17. OUTPUT ATZ\13                    ; Load modem config, do modem self test.    30
  18. INPUT 10 OK                      ; Wait 10 seconds for modem to send "OK".   31
  19. IF SUCCESS GOTO MAN              ; Can dial if modem returns "OK".           32
  20. ECHO \13\10Modem did not respond correctly, returning to EasyK prompt.      ;33
  21. PAUSE 2                                                                      34
  22. OUTPUT +++                       ;Reset modem & return to Easyk prompt.      80
  23. PAUSE 3                                                                     ;81
  24. OUTPUT ATZ\13                                                               ;82
  25. PAUSE 3                                                                     ;83
  26. STOP                                                                        ;84
  27. :MAN                             ; Branch point for successful "OK".         36
  28. RUN CLS
  29. ECHO \13\10   EASYKERM Manual Dialing Commands From UF Campus & Gainesville
  30. ECHO \13\10Call waiting disabled for touch-tone dialing, not a 392 exchange:
  31. ECHO \13       At 1200 Baud: atmdt*70,392-7450                        
  32. ECHO \13       At 2400 Baud: atmdt*70,392-9177                                  
  33. ECHO \13\10Call waiting disabled for rotary dialing, not a 392 exchange:
  34. ECHO \13       At 1200 Baud: atmdp1170,392-7450                               
  35. ECHO \13       At 2400 Baud: atmdp1170,392-9177                                
  36. ECHO \13\10From UF 392 exchange with: Touch Tone      Pulse/Rotary 
  37. ECHO \13                At 1200 Baud: atmdt2-7450     atmdp2-7450              
  38. ECHO \13                At 2400 Baud: atmdt2-9177     atmdp2-9177              
  39. ECHO \13\10Use "atdt" and "atdp" to hear the dialing, i.e., remove "m" for mute.
  40. ECHO \13Leave out "*70," or "1170," if you do not have have call waiting.  Press
  41. ECHO \13your Enter key to tell Kermit you are ready to begin.  Then,
  42. ECHO \13\10 1. Press any key in response to the prompt.                        
  43. ECHO \13 2. Enter one of the dialing commands.
  44. ECHO \13 3. Press the Enter key after "CONNECT" is written to your display.
  45. ECHO \13 4. Enter "vt100" in response to the "ENTER TERMINAL TYPE:" prompt.
  46. run pause      
  47. CONNECT    
  48.  
  49.